Xbasic
StringDictionary.GET Function
Syntax
Data_Value as C = Get as c(name as c)
Arguments
- Data_Value
Character data to be saved in the dictionary.
- name
A unique character value.
Description
Get a value from a dictionary.
Discussion
The .GET() method returns the value of an entry in a StringDictionary list.
Example
dim sd as StringDictionary
sd.set("abc", "3")
? sd.get("abc")
= "3"See Also